Conditions | 2 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** global: grecaptcha */ |
||
6 | function init() { |
||
7 | var element = document.createElement('script'), |
||
8 | target = document.querySelectorAll('script')[0]; |
||
9 | element.type = 'text/javascript'; |
||
10 | element.src = httpProtocol() + '://www.google.com/recaptcha/api.js?onload=reCaptchaOnloadCallback&render=explicit&hl='.concat(window.SS_LOCALE); |
||
11 | target.parentNode.insertBefore(element, target); |
||
12 | } |
||
13 | |||
48 |